Table of Contents

Notation
Definitions
Matrix times matrix
Matrix times vector
Vector times matrix
Vector times vector
Illustration
Fundamental applications
Linear maps
System of linear equations
Dot product, bilinear form and sesquilinear form
General properties
Non-commutativity
Distributivity
Product with a scalar
Transpose
Complex conjugate
Associativity
Square matrices
Powers of a matrix
Abstract algebra
Computational complexity
Generalizations
See also
Notes
References

Matrix multiplication

For matrix multiplication, the number of columns in the first matrix must be equal to the number of rows in the second matrix. The result matrix has the number of rows of the first and the number of columns of the second matrix.

In mathematics, specifically in linear algebra, matrix multiplication is a binary operation that produces a matrix from two matrices. For matrix multiplication, the number of columns in the first matrix must be equal to the number of rows in the second matrix. The resulting matrix, known as the matrix product, has the number of rows of the first and the number of columns of the second matrix. The product of matrices A and B is denoted as AB.

Matrix multiplication was first described by the French mathematician Jacques Philippe Marie Binet in 1812, to represent the composition of linear maps that are represented by matrices. Matrix multiplication is thus a basic tool of linear algebra, and as such has numerous applications in many areas of mathematics, as well as in applied mathematics, statistics, physics, economics, and engineering.

Computing matrix products is a central operation in all computational applications of linear algebra.

Notation

This article will use the following notational conventions: matrices are represented by capital letters in bold, e.g. A; vectors in lowercase bold, e.g. a; and entries of vectors and matrices are italic (they are numbers from a field), e.g. A and a. Index notation is often the clearest way to express definitions, and is used as standard in the literature. The entry in row i, column j of matrix A is indicated by (A)ij, Aij or aij. In contrast, a single subscript, e.g. A1, A2, is used to select a matrix (not a matrix entry) from a collection of matrices.

Definitions

Matrix times matrix

If A is an m × n matrix and B is an n × p matrix,

A=(a11a12a1na21a22a2nam1am2amn),B=(b11b12b1pb21b22b2pbn1bn2bnp)
the matrix product (denoted without multiplication signs or dots) is defined to be the m × p matrix

C=(c11c12c1pc21c22c2pcm1cm2cmp)
such that

cij=ai1b1j+ai2b2j++ainbnj=k=1naikbkj,
for and .

That is, the entry of the product is obtained by multiplying term-by-term the entries of the ith row of A and the jth column of B, and summing these n products. In other words, is the dot product of the ith row of A and the jth column of B.

Therefore, AB can also be written as

C=(a11b11++a1nbn1a11b12++a1nbn2a11b1p++a1nbnpa21b11++a2nbn1a21b12++a2nbn2a21b1p++a2nbnpam1b11++amnbn1am1b12++amnbn2am1b1p++amnbnp)
Thus the product AB is defined if and only if the number of columns in A equals the number of rows in B, in this case n.

In most scenarios, the entries are numbers, but they may be any kind of mathematical objects for which an addition and a multiplication are defined, that are associative, and such that the addition is commutative, and the multiplication is distributive with respect to the addition. In particular, the entries may be matrices themselves (see block matrix).

Matrix times vector

A vector x of length n can be viewed as a column vector, corresponding to an n×1 matrix X whose entries are given by Xi1=xi. If A is an m×n matrix, the matrix-times-vector product denoted by Ax is then the vector y that, viewed as a column vector, is equal to the m×1 matrix AX. In index notation, this amounts to:

yi=j=1naijxj.

One way of looking at this is that the changes from "plain" vector to column vector and back are assumed and left implicit.

Vector times matrix

Similarly, a vector x of length n can be viewed as a row vector, corresponding to a 1×n matrix. To make it clear that a row vector is meant, it is customary in this context to represent it as the transpose of a column vector; thus, one will see notations such as xTA. The identity xTA=(ATx)T holds. In index notation, if A is an n×p matrix, xTA=yT amounts to:
yk=j=1nxjajk.

Vector times vector

A vector with n components can be represented as a 1 × n matrix (a row-vector) or as a n × 1 matrix (a column-vector).

Assuming that a and b are both column-vectors the dot product (or inner product) a·b is equal to the single entry of the 1×1 matrix resulting from the matrix multiplication of the row-vector aT with the column-vector b, i.e. aTb.

The matrix multiplication between the column-vector a and the row-vector bT, also known as outer-product abT, will, instead, give a n × n matrix.

Illustration

thumb

The figure to the right illustrates diagrammatically the product of two matrices A and B, showing how each intersection in the product matrix corresponds to a row of A and a column of B.

[a11a12··a31a32··]4×2 matrix[·b12b13·b22b23]2×3 matrix=[·c12······c33···]4×3 matrix
The values at the intersections, marked with circles in figure to the right, are:
c12=a11b12+a12b22c33=a31b13+a32b23.

Fundamental applications

Historically, matrix multiplication has been introduced for facilitating and clarifying computations in linear algebra. This strong relationship between matrix multiplication and linear algebra remains fundamental in all mathematics, as well as in physics, chemistry, engineering and computer science.

Linear maps

If a vector space has a finite basis, its vectors are each uniquely represented by a finite sequence of scalars, called a coordinate vector, whose elements are the coordinates of the vector on the basis. These coordinate vectors form another vector space, which is isomorphic to the original vector space. A coordinate vector is commonly organized as a column matrix (also called a column vector), which is a matrix with only one column. So, a column vector represents both a coordinate vector, and a vector of the original vector space.

A linear map A from a vector space of dimension n into a vector space of dimension m maps a column vector

x=(x1x2xn)

onto the column vector

y=A(x)=(a11x1++a1nxna21x1++a2nxnam1x1++amnxn).

The linear map A is thus defined by the matrix

A=(a11a12a1na21a22a2nam1am2amn),

and maps the column vector x to the matrix product

y=Ax.

If B is another linear map from the preceding vector space of dimension m, into a vector space of dimension p, it is represented by a matrix B. A straightforward computation shows that the matrix of the composite map is the matrix product BA. The general formula ) that defines the function composition is instanced here as a specific case of associativity of matrix product (see below):
(BA)x=B(Ax)=BAx.

Geometric rotations

Rotation matrix
Using a Cartesian coordinate system in a Euclidean plane, the rotation by an angle α around the origin is a linear map.

More precisely,

[xy]=[cosα-sinαsinαcosα][xy],
where the source point (x,y) and its image (x,y) are written as column vectors.

The composition of the rotation by α and that by β then corresponds to the matrix product

[cosβ-sinβsinβcosβ][cosα-sinαsinαcosα]=[cosβcosα-sinβsinα-cosβsinα-sinβcosαsinβcosα+cosβsinα-sinβsinα+cosβcosα]=[cos(α+β)-sin(α+β)sin(α+β)cos(α+β)],
where appropriate trigonometric identities are employed for the second equality.

That is, the composition corresponds to the rotation by angle α+β, as expected.

Resource allocation in economics

The computation of the bottom left entry of AB corresponds to the consideration of all paths (highlighted) from basic commodity b4 to final product f1 in the production flow graph.

As an example, a fictitious factory uses 4 kinds of basic commodities, b1,b2,b3,b4 to produce 3 kinds of intermediate goods, m1,m2,m3, which in turn are used to produce 3 kinds of final products, f1,f2,f3. The matrices

A=(101211011112)   and   B=(121231422)

provide the amount of basic commodities needed for a given amount of intermediate goods, and the amount of intermediate goods needed for a given amount of final products, respectively.

For example, to produce one unit of intermediate good m1, one unit of basic commodity b1, two units of b2, no units of b3, and one unit of b4 are needed, corresponding to the first column of A.

Using matrix multiplication, compute

AB=(5438956531196);

this matrix directly provides the amounts of basic commodities needed for given amounts of final goods. For example, the bottom left entry of AB is computed as 1·1+1·2+2·4=11, reflecting that 11 units of b4 are needed to produce one unit of f1. Indeed, one b4 unit is needed for m1, one for each of two m2, and 2 for each of the four m3 units that go into the f1 unit, see picture.

In order to produce e.g. 100 units of the final product f1, 80 units of f2, and 60 units of f3, the necessary amounts of basic goods can be computed as

(AB)(1008060)=(1000182011802180),

that is, 1000 units of b1, 1820 units of b2, 1180 units of b3, 2180 units of b4 are needed.

Similarly, the product matrix AB can be used to compute the needed amounts of basic goods for other final-good amount data.

System of linear equations

The general form of a system of linear equations is

a11x1++a1nxn=b1,a21x1++a2nxn=b2,am1x1++amnxn=bm.

Using same notation as above, such a system is equivalent with the single matrix equation
Ax=b.

Dot product, bilinear form and sesquilinear form

The dot product of two column vectors is the unique entry of the matrix product

xTy,

where xT is the row vector obtained by transposing x. (As usual, a 1×1 matrix is identified with its unique entry.)

More generally, any bilinear form over a vector space of finite dimension may be expressed as a matrix product

xTAy,

and any sesquilinear form may be expressed as

xAy,

where x denotes the conjugate transpose of x (conjugate of the transpose, or equivalently transpose of the conjugate).

General properties

Matrix multiplication shares some properties with usual multiplication. However, matrix multiplication is not defined if the number of columns of the first factor differs from the number of rows of the second factor, and it is non-commutative, even when the product remains defined after changing the order of the factors.

Non-commutativity

An operation is commutative if, given two elements A and B such that the product AB is defined, then BA is also defined, and AB=BA.
If A and B are matrices of respective sizes and , then AB is defined if , and BA is defined if . Therefore, if one of the products is defined, the other one need not be defined. If , the two products are defined, but have different sizes; thus they cannot be equal. Only if , that is, if A and B are square matrices of the same size, are both products defined and of the same size. Even in this case, one has in general

ABBA.

For example

(0100)(0010)=(1000),

but

(0010)(0100)=(0001).

This example may be expanded for showing that, if A is a matrix with entries in a field F, then AB=BA for every matrix B with entries in F, if and only if A=cI where , and I is the identity matrix. If, instead of a field, the entries are supposed to belong to a ring, then one must add the condition that c belongs to the center of the ring.

One special case where commutativity does occur is when D and E are two (square) diagonal matrices (of the same size); then . Again, if the matrices are over a general ring rather than a field, the corresponding entries in each must also commute with each other for this to hold.

Distributivity

The matrix product is distributive with respect to matrix addition. That is, if A, B, C, D are matrices of respective sizes m × n, n × p, n × p, and p × q, respectively, one has (left distributivity)

A(B+C)=AB+AC,

and (right distributivity)

(B+C)D=BD+CD.

This results from the distributivity for coefficients by

kaik(bkj+ckj)=kaikbkj+kaikckj
k(bik+cik)dkj=kbikdkj+kcikdkj.

Product with a scalar

If A is a matrix and c a scalar, then the matrices cA and Ac are obtained by left or right multiplying all entries of A by c. If the scalars have the commutative property, then cA=Ac.
If the product AB is defined (that is, the number of columns of A equals the number of rows of B), then

c(AB)=(cA)B and (AB)c=A(Bc).

If the scalars have the commutative property, then all four matrices are equal. More generally, all four are equal if c belongs to the center of a ring containing the entries of the matrices, because in this case, cX Xc for all matrices X.

These properties result from the bilinearity of the product of scalars:
c(kaikbkj)=k(caik)bkj
(kaikbkj)c=kaik(bkjc).

Transpose

If the scalars have the commutative property, the transpose of a product of matrices is the product, in the reverse order, of the transposes of the factors. That is

(AB)T=BTAT

where T denotes the transpose, that is the interchange of rows and columns.

This identity does not hold for noncommutative entries, since the order between the entries of A and B is reversed, when one expands the definition of the matrix product.

Complex conjugate

If A and B have complex entries, then

(AB)*=A*B*

where * denotes the entry-wise complex conjugate of a matrix.

This results from applying to the definition of matrix product the fact that the conjugate of a sum is the sum of the conjugates of the summands and the conjugate of a product is the product of the conjugates of the factors.

Transposition acts on the indices of the entries, while conjugation acts independently on the entries themselves. It results that, if A and B have complex entries, one has

(AB)=BA,

where denotes the conjugate transpose (conjugate of the transpose, or equivalently transpose of the conjugate).

Associativity

Given three matrices A, B and C, the products (AB)C and A(BC) are defined if and only if the number of columns of A equals the number of rows of B, and the number of columns of B equals the number of rows of C (in particular, if one of the products is defined, then the other is also defined). In this case, one has the associative property

(AB)C=A(BC).

As for any associative operation, this allows omitting parentheses, and writing the above products as

This extends naturally to the product of any number of matrices provided that the dimensions match. That is, if A1, A2, ..., An are matrices such that the number of columns of Ai equals the number of rows of Ai + 1 for , then the product

i=1nAi=A1A2An

is defined and does not depend on the order of the multiplications, if the order of the matrices is kept fixed.

These properties may be proved by straightforward but complicated summation manipulations. This result also follows from the fact that matrices represent linear maps. Therefore, the associative property of matrices is simply a specific case of the associative property of function composition.

Computational complexity depends on parenthesization

Although the result of a sequence of matrix products does not depend on the order of operation (provided that the order of the matrices is not changed), the computational complexity may depend dramatically on this order.

For example, if A, B and C are matrices of respective sizes 10×30, 30×5, 5×60, computing (AB)C needs multiplications, while computing A(BC) needs multiplications.

Algorithms have been designed for choosing the best order of products; see Matrix chain multiplication. When the number n of matrices increases, it has been shown that the choice of the best order has a complexity of O(nlogn).

Application to similarity

Any invertible matrix P defines a similarity transformation (on square matrices of the same size as P)

SP(A)=P-1AP.

Similarity transformations map product to products, that is

SP(AB)=SP(A)SP(B).

In fact, one has

P-1(AB)P=P-1A(PP-1)BP=(P-1AP)(P-1BP).

Square matrices

Let us denote Mn(R) the set of n×n square matrices with entries in a ring R, which, in practice, is often a field.

In Mn(R), the product is defined for every pair of matrices. This makes Mn(R) a ring, which has the identity matrix I as an identity element (the matrix whose diagonal entries are equal to 1 and all other entries are 0). This ring is also an associative R-algebra.

If n > 1, many matrices do not have a multiplicative inverse. For example, a matrix such that all entries of a row (or a column) are 0 does not have an inverse. If it exists, the inverse of a matrix A is denoted A−1, and, thus verifies

AA-1=A-1A=I.

A matrix that has an inverse is an invertible matrix. Otherwise, it is a singular matrix.

A product of matrices is invertible if and only if each factor is invertible. In this case, one has

(AB)-1=B-1A-1.

When R is commutative, and, in particular, when it is a field, the determinant of a product is the product of the determinants. As determinants are scalars, and scalars commute, one has thus

det(AB)=det(BA)=det(A)det(B).

The other matrix invariants do not behave as well with products. Nevertheless, if R is commutative, AB and BA have the same trace, the same characteristic polynomial, and the same eigenvalues with the same multiplicities. However, the eigenvectors are generally different if ABBA.

Powers of a matrix

One may raise a square matrix to any nonnegative integer power multiplying it by itself repeatedly in the same way as for ordinary numbers. That is,

A0=I,
A1=A,
Ak=AAAk times.

Computing the kth power of a matrix needs k – 1 times the time of a single matrix multiplication, if it is done with the trivial algorithm (repeated multiplication). As this may be very time consuming, one generally prefers using exponentiation by squaring, which requires less than 2 log2 k matrix multiplications, and is therefore much more efficient.

An easy case for exponentiation is that of a diagonal matrix. Since the product of diagonal matrices amounts to simply multiplying corresponding diagonal elements together, the kth power of a diagonal matrix is obtained by raising the entries to the power k:
[a11000a22000ann]k=[a11k000a22k000annk].

Abstract algebra

The definition of matrix product requires that the entries belong to a semiring, and does not require multiplication of elements of the semiring to be commutative. In many applications, the matrix elements belong to a field, although the tropical semiring is also a common choice for graph shortest path problems. Even in the case of matrices over fields, the product is not commutative in general, although it is associative and is distributive over matrix addition. The identity matrices (which are the square matrices whose entries are zero outside of the main diagonal and 1 on the main diagonal) are identity elements of the matrix product. It follows that the n × n matrices over a ring form a ring, which is noncommutative except if and the ground ring is commutative.

A square matrix may have a multiplicative inverse, called an inverse matrix. In the common case where the entries belong to a commutative ring R, a matrix has an inverse if and only if its determinant has a multiplicative inverse in R. The determinant of a product of square matrices is the product of the determinants of the factors. The n × n matrices that have an inverse form a group under matrix multiplication, the subgroups of which are called matrix groups. Many classical groups (including all finite groups) are isomorphic to matrix groups; this is the starting point of the theory of group representations.

Matrices are the morphisms of a category, the category of matrices. The objects are the natural numbers that measure the size of matrices, and the composition of morphisms is matrix multiplication. The source of a morphism is the number of columns of the corresponding matrix, and the target is the number of rows.

Computational complexity

Computational complexity of matrix multiplication

Improvement of estimates of exponent ω over time for the computational complexity of matrix multiplication O(nω)

The matrix multiplication algorithm that results from the definition requires, in the worst case, multiplications and additions of scalars to compute the product of two square n×n matrices. Its computational complexity is therefore , in a model of computation for which the scalar operations take constant time.

Rather surprisingly, this complexity is not optimal, as shown in 1969 by Volker Strassen, who provided an algorithm, now called Strassen's algorithm, with a complexity of O(nlog27)O(n2.8074).
Strassen's algorithm can be parallelized to further improve the performance.

As of 2024-01, the best peer-reviewed matrix multiplication algorithm is by Virginia Vassilevska Williams, Yinzhan Xu, Zixuan Xu, and Renfei Zhou and has complexity O(n2.371552).

It is not known whether matrix multiplication can be performed in n2 + o(1) time. This would be optimal, since one must read the elements of a matrix in order to multiply it with another matrix.

Since matrix multiplication forms the basis for many algorithms, and many operations on matrices even have the same complexity as matrix multiplication (up to a multiplicative constant), the computational complexity of matrix multiplication appears throughout numerical linear algebra and theoretical computer science.

Generalizations

Other types of products of matrices include:


See also


Notes


References


Category:Matrix theory
Category:Bilinear maps
Category:Multiplication
Category:Numerical linear algebra